In this section we will show basic Python code being executed and how to document your notebooks using Markdown and Latex.
In [ ]:
print ("Hello world")
In [ ]:
x = 1 + 1
x
Variables created in one cell can be used in another
In [ ]:
y = x + 1
print y
Cells must be run in order for this to work
In [ ]:
a = 1
In [ ]:
b = a + 1
b
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]: